This is the documentation for the Realbasic Plugins from Monkeybreadsoftware.de. You find these plugins and the newest version of this document at http://www.monkeybreadsoftware.de/realbasic inside the plugins section.
This help was last updated on Freitag, 6. September 2002 and covers 2136 items: 126 classes, 2 controls and 583 global functions.
The list of the themes | Global methods by category | Global methods by name | The list of the classes | The list of the controls |
class CFMutableArray | ||||
class, CoreFoundation | So, 21. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
A class for a core foundation Array. | ||||
Notes:
Subclass of CFArray. If the release property is true, the destructor of this class will release the array reference. | ||||
Append(value as CFObject) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Appends an item to this array. | ||||
AppendArray(array as CFArray) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Adds the values from an array to another array. | ||||
Notes:
The whole array should be copied. | ||||
AppendArray(array as CFArray,min as integer,max as integer) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Adds the values from an array to another array. | ||||
Notes:
The whole array should be copied. Min and Max are the range to be copied. Make sure they are correct indexes! | ||||
Exchange(index1 as integer,index2 as integer) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Exchanges the values at two indices of the array. | ||||
Notes:
Make sure indexes are in range between 0 and count-1. | ||||
Insert(index as integer,value as CFObject) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Inserts an item to this array. | ||||
Notes:
Make sure index is in range between 0 and count. If Index=count then this function does like append. | ||||
Remove(index as integer) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Removes the value with the given index from the array. | ||||
Notes:
Make sure index is in range between 0 and count-1. | ||||
RemoveAll | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Removes all the values from the array, making it empty. | ||||
SetValue(index as integer,value as CFObject) | ||||
method, CoreFoundation | Di, 23. Jul 2002 | |||
Mac OS Classic: Does nothing. | Mac OS Carbon: Works. | Windows: Does nothing. | ||
Function:
Changes the value with the given index in the array. |
Written 2002 by Christian Schmitz. Feel free to ask or report mistakes to realbasic@macsw.de.
Thanks.